翻訳と辞書
Words near each other
・ Iterations of I
・ Iterative and incremental development
・ Iterative aspect
・ Iterative closest point
・ Iterative compression
・ Iterative deepening A*
・ Iterative deepening depth-first search
・ Iterative design
・ Iterative impedance
・ Iterative learning control
・ Iterative method
・ Iterative proportional fitting
・ Iterative Receiver Design
・ Iterative reconstruction
・ Iterative refinement
Iterative Template Library
・ Iterative Viterbi decoding
・ Iteratively reweighted least squares
・ Iterator
・ Iterator pattern
・ Iteri language
・ Iteris
・ ITerm2
・ Itero de la Vega
・ Itero del Castillo
・ Iteron
・ Ites
・ Itesalat
・ Itesham Uddin
・ Itesiwaju


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Iterative Template Library : ウィキペディア英語版
Iterative Template Library
The Iterative Template Library (ITL) is a generic component library that provides iterative methods for solving linear systems. ITL also provides numerous preconditioners which is for MTL. The ITL was written at the Open Systems Lab of Indiana University by Andrew Lumsdaine, Lie-Quan Lee, Jeremy Seik, and others.
ITL uses the abstract interface of matrix–vector, vector–vector, and vector–scalar operations MTL is default to serve those operations. ITL is able to use other packages such as Blitz++ and BLAS with the same abstract interface provided.
Because generic programming encourages simplifying interfaces to only what is required by the logic they support, the ITL algorithms resemble pseudocode, at least when compared with other implementations of the same algorithms. For example, ITL's conjugate gradient follows:
/
* required operations: mult,copy,dot_conj,add,scaled
*/
template < class Matrix, class VectorX, class VectorB,
class Preconditioner, class Iteration >
int cg(const Matrix& A, VectorX& x, const VectorB& b,
const Preconditioner& M, Iteration& iter)

return iter.error_code();
}
==See also==

* Template Numerical Toolkit

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Iterative Template Library」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.